Current Location: Home> Function Categories> atanh

atanh

Antihyperbolic tangent
Name:atanh
Category:math
Programming Language:php
One-line Description:Inverse hyperbolic tangent.

Definition and usage

atanh() function returns an inverse hyperbolic tangent of an angle.

Example

Returns the inverse hyperbolic tangent value of different values:

 <?php
echo ( atanh ( M_PI_4 ) ) ;
echo ( atanh ( 0.50 ) ) ;
echo ( atanh ( - 0.50 ) ) ;
echo ( atanh ( 1 ) ) ;
echo ( atanh ( - 1 ) ) ;
?>

Try it yourself

grammar

 atanh ( x )
parameter describe
x Required. A number.

illustrate

atanh() function returns the inverse hyperbolic tangent value of x , that is, the value whose hyperbolic tangent is x .

Similar Functions
  • Absolute value abs

    abs

    Absolutevalue
  • Hyperbolic cosine cosh

    cosh

    Hyperboliccosine
  • Sow the random number generator seeds srand

    srand

    Sowtherandomnumberge
  • Antihyperbolic tangent atanh

    atanh

    Antihyperbolictangen
  • Ancient sine asin

    asin

    Ancientsine
  • Perform floating point division under IEEE 754 semantics fdiv

    fdiv

    Performfloatingpoint
  • Antihyperbolic cosine acosh

    acosh

    Antihyperboliccosine
  • Calculate the index of e exp

    exp

    Calculatetheindexofe
Popular Articles